home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / pcboard / reflag1.zip / REFLAGX.PPE (.txt) < prev   
PCBoard Programming Language Executable  |  1996-04-03  |  1KB  |  92 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 3.1O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     String   STRING002
  21.     String   STRING003
  22.  
  23. ;------------------------------------------------------------------------------
  24.  
  25.     PrintLn 
  26.     DispStr "@X0E                     Any flagged files will be recorded..." + Chr(10) + Chr(13)
  27.     If (Exist(PPEPath() + "B" + String(U_RecNum(U_Name()))) == 1) Delete PPEPath() + "B" + String(U_RecNum(U_Name()))
  28.     If (Exist("flist." + I2S(PcbNode(), 10)) == 0) Stop
  29.     FOpen 1, PPEPath() + "B" + String(U_RecNum(U_Name())), 1, 3
  30.     FOpen 2, "flist." + I2S(PcbNode(), 10), 0, 0
  31.     :LABEL001
  32.     FRead 2, STRING001, 66
  33.     FRead 2, STRING003, 63
  34.     STRING002 = STRING001
  35.     If (STRING002 <> "") Then
  36.         FPutLn 1, STRING002
  37.     Endif
  38.     If (STRING002 <> "") Goto LABEL001
  39.     FClose 2
  40.     FClose 1
  41.  
  42. ;------------------------------------------------------------------------------
  43. ;
  44. ; Usage report (before postprocessing)
  45. ;
  46. ; ■ Statements used :
  47. ;
  48. ;    2       Goto 
  49. ;    1       Let 
  50. ;    1       PrintLn 
  51. ;    4       If 
  52. ;    2       FOpen 
  53. ;    2       FClose 
  54. ;    1       FPutLn 
  55. ;    1       Delete 
  56. ;    1       Stop
  57. ;    1       DispStr 
  58. ;    2       FRead 
  59. ;
  60. ;
  61. ; ■ Functions used :
  62. ;
  63. ;    10      +
  64. ;    2       ==
  65. ;    2       <>
  66. ;    1       !
  67. ;    2       Chr()
  68. ;    3       U_Name()
  69. ;    3       String()
  70. ;    3       PPEPath()
  71. ;    2       PcbNode()
  72. ;    2       Exist()
  73. ;    2       I2S()
  74. ;    3       U_RecNum()
  75. ;
  76. ;------------------------------------------------------------------------------
  77. ;
  78. ; Analysis flags : No flag
  79. ;
  80. ;------------------------------------------------------------------------------
  81. ;
  82. ; Postprocessing report
  83. ;
  84. ;    0       For/Next
  85. ;    0       While/EndWhile
  86. ;    1       If/Then or If/Then/Else
  87. ;    0       Select Case
  88. ;
  89. ;------------------------------------------------------------------------------
  90. ;                 AEGiS Corp - Break the routines, code against the machines!
  91. ;------------------------------------------------------------------------------
  92.